(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <proto/intuition.h>
void ActivateWindow()
SYNOPSIS
struct Window * window

LOCATION
In IntuitionBase at offset 75
FUNCTION
Activates the specified window. The window gets the focus and all further input it sent to that window. If the window requested it, it will get a IDCMP_ACTIVEWINDOW message.

INPUTS
window
The window to activate
RESULT
None.

NOTES
If the user has an autopointer tool (sunmouse), the call will succeed, but the tool will deactivate the window right after this function has activated it. It is no good idea to try to prevent this by waiting for IDCMP_INACTIVEWINDOW and activating the window again since that will produce an anoying flicker and it will slow down the computer a lot.

EXAMPLE
BUGS
SEE ALSO
ModiyIDCMP(), OpenWindow(), CloseWindow()
INTERNALS
HISTORY
27.01.1997 ldp
Polish
10.12.1996 aros
Moved #include into first column to allow makedepend to see it.
08.11.1996 aros
All OS function use now Amiga types

Moved intuition-driver protos to intuition_intern.h

24.10.1996 aros
Use the official AROS macros over the __AROS versions.
29.08.1996 digulla
Moved common code from driver to Intuition More docs
23.08.1996 digulla
Several new functions; some still empty.